home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / PROGRAMM / PASCAL / 0921.ZIP / HIDESH.ARC / HIDESHOW.DOC < prev    next >
Text File  |  1988-01-20  |  5KB  |  133 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.      HIDEDIR AND SHOWDIR commands:
  8.       
  9.      Copyright (C) 1988 by Randall M. Gunning 
  10.       
  11.        Randall M. Gunning 
  12.        Post Office Box 4667 
  13.        Stockton, CA  95204 
  14.       
  15.        Compuserve ID:  74166,1656 
  16.        Genie ID:       RGUNNING 
  17.        MCI Mail ID:    RGUNNING 
  18.       
  19.      These two programs (HIDEDIR.EXE and SHOWDIR.EXE) and this documentation
  20.      copyright (C) 1988 by Randall M. Gunning.  All rights reserved. 
  21.       
  22.      All users are granted a limited license to copy these two programs 
  23.      (HIDEDIR.EXE and SHOWDIR.EXE) and this documentation for personal 
  24.      non-commercial use subject to the following limitations: 
  25.       
  26.         1.  No user may modify either program or this documentation. 
  27.         2.  Both programs and this documentation must be distributed 
  28.             together (usually in ARC format). 
  29.         3.  No fee, charge or other compensation may be accepted or 
  30.             requested by any licensee. 
  31.         4.  Operators of electronic bulletin board systems (including 
  32.             commercial systems such as Compuserve, Genie, The Source, 
  33.             etc.) may post these programs for downloading by their users 
  34.             as long as the above conditions are met. 
  35.       
  36.      If you find these programs useful, a suggested contribution of $2.00 
  37.      should be sent to the address above.  This will encourage other useful 
  38.      utilities and place your name on a list for notification of other 
  39.      products as they become available. 
  40.       
  41.      If you have any suggestions, comments or problems, please send a letter
  42.      to the address above or via EMail on Compuserve, Genie or MCI Mail. 
  43.       
  44.      Randall M. Gunning makes no warranty of any kind, express or implied, 
  45.      including without limitation, any warranties of merchantability 
  46.      and/or fitness for a particular purpose.  Randall M. Gunning shall not 
  47.      be liable for any damages, whether direct, indirect, special or 
  48.      consequential arising from a failure of this program to operate in the 
  49.      manner desired by the user.  Randall M. Gunning shall not be liable 
  50.      for any damages to data or property which may be caused directly or 
  51.      indirectly by use of the program. 
  52.       
  53.      IN NO EVENT WILL Randall M. Gunning BE LIABLE TO YOU FOR ANY DAMAGES, 
  54.      INCLUDING ANY LOST PROFITS, LOST SAVINGS OR OTHER INCIDENTAL OR 
  55.      CONSEQUENTIAL DAMAGES ARISING OUT OF YOUR USE OR INABILITY TO USE THE 
  56.      PROGRAM, OR FOR ANY CLAIM BY ANY OTHER PARTY. 
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.  
  71.  
  72.  
  73.       
  74.      Now that the legal  language is  out of  the way,  here is  how you use
  75.      these programs: 
  76.       
  77.         To hide a directory, enter the command: 
  78.       
  79.             HIDEDIR directory_path password 
  80.       
  81.             where directory_path is the full or partial path name of the 
  82.             directory you want hidden and password is a two (2) letter 
  83.             password you want to use to hide the directory.  For example: 
  84.       
  85.             HIDEDIR c:\test aa    - this will hide the directory C:\TEST 
  86.                                     with a password of AA. 
  87.       
  88.         To show a directory hidden by HIDEDIR, enter the command: 
  89.       
  90.             SHOWDIR directory_path password 
  91.       
  92.             where directory_path is the full or partial path name of the 
  93.             directory you  hide with HIDEDIR and password is the two (2)    
  94.             letter password you used to hide the directory.  For example: 
  95.       
  96.             SHOWDIR c:\test aa    - this will show the directory C:\TEST 
  97.                                     with a password of AA (if these were 
  98.                                     the parameters used with HIDEDIR). 
  99.       
  100.      HIDEDIR can only be used to hide directories that do not have
  101.      extentions (.XXX) and are not already hidden.  SHOWDIR can only be used
  102.      to show directories that have been hidden with the HIDEDIR command. 
  103.      Any comprehensive DOS utility program (such as PCTOOLS or NORTON
  104.      Utilities) will be able to find directories hidden with these commands.
  105.      These commands are only  to be  used to  protect files  from the casual
  106.      user. 
  107.       
  108.      WARNING:  THESE COMMANDS HAVE BEEN TESTED USING PC-DOS 3.2 AND PC-DOS
  109.      3.3 ON IBM (PC, XT, AT AND PS/2) MACHINES ONLY.  THEY SHOULD WORK
  110.      CORRECTLY ON ANY PC/MS-DOS 3.x COMPATIBLE MACHINE.  BEFORE USING THESE
  111.      COMMANDS IN A PRODUCTION ENVIRONMENT (ON LIVE DIRECTORIES), TEST THEM
  112.      ON YOUR MACHINE ON A NEWLY FORMATTED FLOPPY DISK FIRST.  IF THEY WORK
  113.      CORRECTLY THERE, THEY WILL PROBABLY WORK ON ANY OF YOUR DIRECTORIES. 
  114.       
  115.      These programs were written entirely using TURBO PASCAL Version 4.0 and
  116.      contain no assembly language or direct calls to PC/MS-DOS. 
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129.  
  130.  
  131.  
  132.  
  133.